========================================================================
       CONSOLE APPLICATION : VNX_SWtest
========================================================================


This demo console application was derived from an earlier version that
used the standard VC 6 AppWizard. As a result the project file may refer to 
earlier VC 6 build property sheets.

VNX_SWtest.cpp
    This is the main application source file.


/////////////////////////////////////////////////////////////////////////////
Other standard files:

StdAfx.h, StdAfx.cpp
    These files are used to build a precompiled header (PCH) files



/////////////////////////////////////////////////////////////////////////////
Other notes:

VNX_switch.h is an include file which has structure declarations and API entry point declarations
for the Lab Brick RF Switch DLL API. Note that since the DLL uses standard call format, its names must be "un-decorated"

// ---- The dll has __stdcall format, so we need to un-decorate the function call names ----
extern "C" {
#include "VNX_switch.h"

}

The VNX_switch.lib file is used by the linker to link to the DLL. For this example a copy is in the same directory as
the source. Note that the linker path (in Project->Settings->Link->Object/Library Modules) should be changed to match the
location you are using to store the vnx_switch.lib file.)

To run the program, make sure that the vnx_switch.dll file is located in the same directory as the VNX_SWtest.exe 
file you build.
/////////////////////////////////////////////////////////////////////////////
